home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-05-08 | 924 b | 36 lines |
- # Nmake macros for building Windows 32-Bit apps
-
- include <dvwin32.mak>
-
- # Comment out the next line to disable double buffering.
- CFLAGS = $(CFLAGS) -DDOUBLE_BUFFER
-
- TELEOBJ = control.obj dialog.obj do_simul.obj \
- fixbox.obj glob_vars.obj main.obj \
- move_win.obj msg_log.obj sim_setup.obj \
- sim_util.obj smallmap.obj status.obj \
- subviews.obj
-
- RESSRC = teledemo.rc
- !IF "$(CPU)"=="ALPHA"
- RESOURCE_OBJS = teledemor.obj
- !ELSE
- RESOURCE_OBJS = teledemo.res
- !ENDIF
-
-
- telecomdemo.exe: $(TELEOBJ) $(RESOURCE_OBJS)
- $(LINK) $(LINKFLAGS) \
- $(DV_LIBS) \
- $(TELEOBJ) $(RESOURCE_OBJS) -out:telecomdemo.exe
-
- .c.obj:
- $(CC) $(INCDIRS) $(CFLAGS) $<
-
- teledemo.res: $(RESSRC)
- rc -r $(RESSRC)
-
- teledemor.obj : $(RESSRC)
- rc -r teledemo.rc
- cvtres -alpha teledemo.res -o teledemor.obj
-